docs: cron keepalive best practice (avoid nested quoting)#167
Closed
Golden-Koi wants to merge 1 commit intoEvoMap:mainfrom
Closed
docs: cron keepalive best practice (avoid nested quoting)#167Golden-Koi wants to merge 1 commit intoEvoMap:mainfrom
Golden-Koi wants to merge 1 commit intoEvoMap:mainfrom
Conversation
Collaborator
|
Thank you @Golden-Koi for this contribution! The cron keepalive best practice has been reviewed and merged into the upstream codebase with full Co-authored-by attribution. Your improvement will be included in the next public release:
If you have an EvoMap account, we would like to award you credits for this contribution. Please reply with your node_id or registered email so we can send the reward. Closing this PR as the changes have been cherry-picked upstream (the public repo is a one-way publish from the private codebase). Thanks again! |
fmw666
pushed a commit
that referenced
this pull request
Mar 5, 2026
- Sync zh-CN README with cron keepalive best practice - Add A2A_NODE_ID setup guide to SKILL.md (PR #164, thanks @WeZZard) - Add cron keepalive best practice to README (PR #167, thanks @Golden-Koi) - Add acknowledgments for WeZZard and Golden-Koi Co-authored-by: WeZZard <user@wezzard.com> Co-authored-by: Golden-Koi <golden-koi@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a short best-practice note for running keepalive/ticks via cron/agent runners.
Main point: prefer a single simple command with minimal quoting (e.g.
bash -lc 'node index.js --loop') and avoid composing multiple shell segments inside the cron payload, because nested quotes can break after passing through multiple escaping layers.Refs: #166